body {
    margin: 0;
    padding: 0;
    height: 900px;
    background: url('../image/home-page-banner-1.jpg') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif

}


.overlay {
    height: 1100px;
    width: 2000px;
    background: rgba(255, 255, 255, 0.4); /* White transparent */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
      backdrop-filter: blur(2px); /* Adjust the pixel value for desired blur intensity */
  -webkit-backdrop-filter: blur(5px); /* For older WebKit browsers */
}

.overlay img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
}


.subtitle {
    font-size: 20px;
    font-family:  "Nova Square", sans-serif;
}

.title {
    font-size: 50px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-family: "Nova Square", sans-serif;
}
.title span {
    color: #193f63;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 25px 0;
    font-family:  "Nova Square", sans-serif;
}

.countdown div {
    font-size: 18px;
    text-align: center;
}

.countdown span {
    font-size: 40px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid black;
    color: black;
    font-size: 18px;
    border-radius: 6px;
}

.btn:hover {
    background: black;
    color: white;
}


@media (max-width: 768px) {

    body {
        height: auto;
        padding: 20px;
    }

    .overlay img {
        max-width: 100px;
    }

    .title {
        font-size: 35px;
    }

    .subtitle {
        font-size: 18px;
    }

    .countdown {
        gap: 20px;
    }

    .countdown span {
        font-size: 30px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

@media (max-width: 380px) {

    body {
        height: auto;
        padding: 1px;
    }

   

    .overlay img {
        max-width: 90px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
    }

    .countdown {
        gap: 12px;
        padding: 5px;

    }

    .countdown span {
        font-size: 26px;
    }

    .countdown div {
        font-size: 13px;
    }

    .btn {
        font-size: 15px;
        padding: 8px 18px;
    }
}

